home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Whiteline: Alpha
/
Whiteline Alpha.iso
/
progtool
/
c
/
gcc
/
gempp19.zoo
/
gem++19
/
include
/
bool.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-11-01
|
97 b
|
10 lines
#ifndef bool_h
#define bool_h
typedef int bool;
const bool TRUE=1;
const bool FALSE=0;
#endif